Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 | import { Fragment } from 'react' import TableContents from '../../components/TableContents' import Heading from '../../components/Heading' import { ContactSection } from '../../components/contact/ContactSection' import { ContactProvince } from '../../components/contact/ContactProvince' import { getAuthModalsContent } from '../../graphql/mappers/auth-modals' import { GetContactUsPageReturnType, getContactUsPage, } from '../../graphql/mappers/contact-us-pages-dynamic' import { AuthIsDisabled, ValidateSession } from '../../lib/auth' import { deleteAllCookiesWithPrefix, extendExpiryTime, } from '../../lib/cookie-utils' import { GetServerSideProps } from 'next' interface Data { title: string desc: string author: string keywords: string service: string creator: string accessRights: string } interface ContactUsPageProps { locale: string pageContent: NonNullable<GetContactUsPageReturnType>['en'] & NonNullable<GetContactUsPageReturnType>['fr'] meta: { data_en: Data data_fr: Data } } const ContactUsPage = (props: ContactUsPageProps) => { /* istanbul ignore next */ return ( <div id="homeContent" data-testid="contactUsPage-test" data-cy="ContactUsContent" > <Heading id={'contact-us-heading'} title={props.pageContent.title} /> <div className="py-5" data-testid={`${ props.pageContent.items.length > 0 && 'tableOfContents-test' }`} /> <TableContents id="onthispage" sectionList={props.pageContent.items.map((item) => { return { name: item.title, link: `#${item.id}` } })} lang={props.locale} /> {props.pageContent.items.map((item) => ( <Fragment key={item.id}> {item.layout === 'provinces' ? ( <ContactProvince id={item.id} details={item.details} intro={item.intro} title={item.title} /> ) : ( <ContactSection lang={props.locale} id={item.id} details={item.details} intro={item.intro} title={item.title} /> )} </Fragment> ))} </div> ) } export const getServerSideProps = async function ({ locale, params, req, res, }) { const authDisabled = AuthIsDisabled() ? true : false Iif (!authDisabled) { const sessionValid = await ValidateSession( req.cookies, process.env.CLIENT_ID as string, ) if (!sessionValid) { deleteAllCookiesWithPrefix( req, res, process.env.AUTH_COOKIE_PREFIX as string, ) return { redirect: { destination: `/${locale}/auth/login`, permanent: false, }, } } else { extendExpiryTime( req, res, process.env.AUTH_COOKIE_PREFIX + 'sessionId', Number(process.env.SESSION_MAX_AGE as string), ) } } const id = params?.id Iif (typeof id !== 'string' || id.trim().length === 0) { return { notFound: true } } const pageContent = await getContactUsPage(id) //Redirect to 404 page if user navigates to non-existent page Iif (!pageContent) { return { notFound: true } } const authModals = await getAuthModalsContent() /* istanbul ignore next */ /* For some reason when using dynamic routes, the locale gets set to the default (und) after trying to switch back to English from French. The below fixes this issue by setting the locale to English if it is undefined, which is what the middleware is doing on all other pages and what it should also be doing for the contact pages. */ if (locale === 'und') { locale = 'en' } const langToggleLink = locale === 'en' ? `/fr/contactez-nous/${pageContent.fr.pageName}` : `/en/contact-us/${pageContent.en.pageName}` const breadCrumbItems = locale === 'en' ? pageContent.en.breadcrumb.map(({ link, text }) => { return { text, link: '/' + locale + '/' + link } }) : pageContent.fr.breadcrumb.map(({ link, text }) => { return { text, link: '/' + locale + '/' + link } }) /* Place-holder Meta Data Props */ const meta = { data_en: { title: `${pageContent.en.title} - My Service Canada Account`, desc: pageContent.en.description, author: 'Service Canada', keywords: '', service: 'ESDC-EDSC_MSCA-MSDC-SCH', creator: 'Service Canada', accessRights: '1', }, data_fr: { title: `${pageContent.fr.title} - Mon dossier Service Canada`, desc: pageContent.fr.description, author: 'Service Canada', keywords: '', service: 'ESDC-EDSC_MSCA-MSDC-SCH', creator: 'Service Canada', accessRights: '1', }, } return { props: { locale: locale === 'en' ? 'en' : 'fr', langToggleLink, pageContent: { ...(locale === 'en' ? pageContent.en : pageContent.fr), breadCrumbItems, }, meta, breadCrumbItems, aaPrefix: `ESDC-EDSC_MSCA-MSDC-SCH:${pageContent.en.id || pageContent.en.title}`, aaMenuPrefix: `ESDC-EDSC_MSCA-MSDC-SCH:Nav Menu`, popupStaySignedIn: locale === 'en' ? authModals.mappedPopupStaySignedIn?.en : authModals.mappedPopupStaySignedIn?.fr, popupYouHaveBeenSignedout: locale === 'en' ? authModals.mappedPopupSignedOut?.en : authModals.mappedPopupSignedOut?.fr, }, } } satisfies GetServerSideProps<ContactUsPageProps> // https://nextjs.org/docs/pages/building-your-application/configuring/typescript#static-generation-and-server-side-rendering export default ContactUsPage |